home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
workbench
/
libs
/
dslibrary.lha
/
ds.library
/
include
/
libraries
/
dsbase.h
< prev
Wrap
C/C++ Source or Header
|
1997-02-13
|
611b
|
34 lines
/*
** $VER: dsbase.h 37.1 (30.01.97)
**
** definition of DSBase
**
** (C) Copyright 1997 Markus Hillenbrand
** All Rights Reserved.
*/
#ifndef EXAMPLE_EXAMPLEBASE_H
#define EXAMPLE_EXAMPLEBASE_H
#ifdef __MAXON__
#ifndef EXEC_LIBRARIES_H
#include <exec/libraries.h>
#endif
#else
#ifndef EXEC_LIBRARIES
#include <exec/libraries.h>
#endif /* EXEC_LIBRARIES_H */
#endif
struct DSBase
{
struct Library dsb_LibNode;
APTR dsb_SegList;
struct ExecBase *dsb_SysBase;
struct IntuitionBase *dsb_IntuitionBase;
struct GfxBase *dsb_GfxBase;
};
#endif /* EXAMPLE_EXAMPLEBASE_H */